projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ae71266
)
Tweak configure.ac syntax in recent module patch
author
Paul Eggert
<eggert@cs.ucla.edu>
Sun, 17 Apr 2016 02:49:15 +0000
(19:49 -0700)
committer
Paul Eggert
<eggert@cs.ucla.edu>
Sun, 17 Apr 2016 02:49:31 +0000
(19:49 -0700)
* configure.ac: Use proper Autoconf parenthesization in
recent HAVE_MODULES patch. Although this doesn’t fix any bugs,
the previous syntax was confusing.
configure.ac
patch
|
blob
|
history
diff --git
a/configure.ac
b/configure.ac
index 89bc0c5638fd1fe93bc61ba48d1880c64bb224fb..7184d68790a61f05737a2e990e2c1c1847cef76d 100644
(file)
--- a/
configure.ac
+++ b/
configure.ac
@@
-3351,9
+3351,10
@@
if test "${with_modules}" != "no"; then
HAVE_MODULES=yes
;;
*)
- # BSD system have dlopen in the libc
- AC_CHECK_FUNC(dlopen, [MODULES_SUFFIX=".so"]
- [HAVE_MODULES=yes], [])
+ # BSD systems have dlopen in libc.
+ AC_CHECK_FUNC([dlopen],
+ [MODULES_SUFFIX=".so"
+ HAVE_MODULES=yes])
;;
esac